[]
public void InsertRange(int startingIndex, IEnumerable<T?> newItems)
Public Sub InsertRange(startingIndex As Integer, newItems As IEnumerable(Of T))
| Type | Name | Description |
|---|---|---|
| int | startingIndex | |
| IEnumerable<T> | newItems |
Inserts the specified count of items (nulls) at the specified startingIndex.
public void InsertRange(int startingIndex, int count)
Public Sub InsertRange(startingIndex As Integer, count As Integer)
| Type | Name | Description |
|---|---|---|
| int | startingIndex | The index where the items are inserted. |
| int | count | The number of nulls that will be inserted. |